gtk4.git
8 years agoLabel: Replace allow-none with nullable/optional
Daniel Boles [Sun, 24 Sep 2017 11:02:54 +0000 (12:02 +0100)]
Label: Replace allow-none with nullable/optional

8 years agoemojichooser: Plug a memory leak
Timm Bäder [Sun, 24 Sep 2017 16:15:41 +0000 (18:15 +0200)]
emojichooser: Plug a memory leak

8 years agoFix broken translations of 'calendar:' settings (ignored translator comments)
Andre Klapper [Sat, 23 Sep 2017 21:42:31 +0000 (23:42 +0200)]
Fix broken translations of 'calendar:' settings (ignored translator comments)

8 years agogsk: Fix a prefix mishap
Matthias Clasen [Sat, 23 Sep 2017 17:15:30 +0000 (13:15 -0400)]
gsk: Fix a prefix mishap

There shouldn't be any gst_ functions in here...

8 years agoCosmetics
Matthias Clasen [Sat, 23 Sep 2017 13:47:05 +0000 (09:47 -0400)]
Cosmetics

Go back to a single GskVulkanOpRender that can
handle 0, 1 or 2 sources.

8 years agovulkan: Implement nonseparable blendmodes
Matthias Clasen [Sat, 23 Sep 2017 12:59:06 +0000 (08:59 -0400)]
vulkan: Implement nonseparable blendmodes

This is a directly-from-the-spec, unoptimized implementation.

8 years agovulkan: Implement blend modes
Matthias Clasen [Sat, 23 Sep 2017 05:59:50 +0000 (01:59 -0400)]
vulkan: Implement blend modes

This is another example for a 2-texture shader.
So far, only separable blend modes are implemented.
The implementation is not optimized, with an
if-else cascade in the shader.

8 years agovulkan: fix a clip handling problem
Matthias Clasen [Fri, 22 Sep 2017 22:48:36 +0000 (18:48 -0400)]
vulkan: fix a clip handling problem

We were looking at uninitialized memory here, instead
of the type of the source clip, as we should.

This showed up as mispositioned clip in the first frame
of a crossfade stack transition, and also as overdraw in
sliding stack transitions.

8 years agovulkan: Implement crossfade
Matthias Clasen [Fri, 22 Sep 2017 18:20:57 +0000 (14:20 -0400)]
vulkan: Implement crossfade

This is the first shader using two textures. It almost works.

8 years agovulkan: Drop GskVulkanPipelineLayout
Matthias Clasen [Fri, 22 Sep 2017 17:30:26 +0000 (13:30 -0400)]
vulkan: Drop GskVulkanPipelineLayout

We already move the descriptor set layout out of it,
so we can just as well keep the pipeline layouts in
the render object as well, and get rid of this extra
object. Update all callers.

8 years agoAllow different pipeline layouts
Matthias Clasen [Fri, 22 Sep 2017 14:35:19 +0000 (10:35 -0400)]
Allow different pipeline layouts

These are differentiated by the number of textures; currently
we have shaders with 0 and 1 textures.

8 years agoAdd a getter to the pipeline layout directly from the pipeline
Matthias Clasen [Fri, 22 Sep 2017 14:13:25 +0000 (10:13 -0400)]
Add a getter to the pipeline layout directly from the pipeline

This is a step towards allowing multiple pipeline layouts.

8 years agovulkan: Move descriptor set layout to the render object
Matthias Clasen [Fri, 22 Sep 2017 14:02:27 +0000 (10:02 -0400)]
vulkan: Move descriptor set layout to the render object

We want to maintain a single descriptor set layout while introducing
multiple pipeline layouts, so split this off.

8 years agoUpdate Persian translations
Arash Mousavi [Fri, 22 Sep 2017 19:24:21 +0000 (22:54 +0330)]
Update Persian translations

8 years agogdk: Add g-i annotations for new event getters
Rico Tzschichholz [Thu, 21 Sep 2017 12:07:11 +0000 (14:07 +0200)]
gdk: Add g-i annotations for new event getters

8 years agoFix a typo
Matthias Clasen [Fri, 22 Sep 2017 00:31:48 +0000 (20:31 -0400)]
Fix a typo

8 years agoDrop gail-4.0.pc.in
Emilio Pozuelo Monfort [Thu, 21 Sep 2017 18:34:26 +0000 (20:34 +0200)]
Drop gail-4.0.pc.in

libgail is gone.

8 years agogsk: vulkan: Drop an unused api
Matthias Clasen [Thu, 21 Sep 2017 17:47:17 +0000 (13:47 -0400)]
gsk: vulkan: Drop an unused api

We don't use the upload-single-region api anymore.
No need to keep it around.

8 years agovulkan: Batch uploads from the glyph cache
Matthias Clasen [Thu, 21 Sep 2017 17:45:01 +0000 (13:45 -0400)]
vulkan: Batch uploads from the glyph cache

This uses the new api that was introduced in the previous
commit.

8 years agovulkan: Add an api to update multiple image regions
Matthias Clasen [Thu, 21 Sep 2017 17:42:57 +0000 (13:42 -0400)]
vulkan: Add an api to update multiple image regions

Instead of doing multiple copy commands with a tiny buffer
for each glyph, we can just batch them all together. This
also avoids the issue of creating multiple barriers for the
same image.

8 years agovulkan: Quiet another validation warning
Matthias Clasen [Thu, 21 Sep 2017 16:05:00 +0000 (12:05 -0400)]
vulkan: Quiet another validation warning

It complains if a vertex shader has an out that is not matched
to an in of the fragment shader.

8 years agovulkan: Quiet another validation error
Matthias Clasen [Thu, 21 Sep 2017 03:46:16 +0000 (23:46 -0400)]
vulkan: Quiet another validation error

8 years agoCosmetic change
Matthias Clasen [Thu, 21 Sep 2017 01:16:45 +0000 (21:16 -0400)]
Cosmetic change

8 years agogsk: Make repeat nodes deserializable
Matthias Clasen [Thu, 21 Sep 2017 01:16:09 +0000 (21:16 -0400)]
gsk: Make repeat nodes deserializable

This was just a simple oversight.

8 years agogsk: Fix serialization of text nodes
Matthias Clasen [Thu, 21 Sep 2017 01:00:33 +0000 (21:00 -0400)]
gsk: Fix serialization of text nodes

8 years agoAdd simple aging for the glyph cache
Matthias Clasen [Wed, 20 Sep 2017 21:52:40 +0000 (17:52 -0400)]
Add simple aging for the glyph cache

This should prevent the cache from growing out of bounds.

8 years agogsk vulkan: Use new api in the glyph cache
Lionel Landwerlin [Wed, 20 Sep 2017 23:12:16 +0000 (19:12 -0400)]
gsk vulkan: Use new api in the glyph cache

Use the newly introduced gsk_vulkan_image_new_for_atlas.

8 years agogsk: vulkan: rework image layout/access transitions
Lionel Landwerlin [Wed, 20 Sep 2017 23:11:42 +0000 (19:11 -0400)]
gsk: vulkan: rework image layout/access transitions

By tracking the last transition we can build the appropriate barriers.
Also use the most appropriate initial layout/access at creation :

for linear image : predefined (we prepare the content ourself through memcpy)
for everything else : undefined (we don't care about the content, will most likely be erase)

8 years agogsk: vulkan: silence anisotropy validation warning
Lionel Landwerlin [Wed, 20 Sep 2017 17:41:09 +0000 (18:41 +0100)]
gsk: vulkan: silence anisotropy validation warning

8 years agoglyph cache: Upload glyphs incrementally
Matthias Clasen [Wed, 20 Sep 2017 14:02:29 +0000 (10:02 -0400)]
glyph cache: Upload glyphs incrementally

This does not work yet.

8 years agovulkan: pass the context when creating a glyph cache
Matthias Clasen [Wed, 20 Sep 2017 14:01:58 +0000 (10:01 -0400)]
vulkan: pass the context when creating a glyph cache

8 years agovulkan: Add an upload_region api to GskVulkanImage
Matthias Clasen [Wed, 20 Sep 2017 14:00:48 +0000 (10:00 -0400)]
vulkan: Add an upload_region api to GskVulkanImage

This will let us update larger textures incrementally.
Sadly, it does not work yet.

8 years agoAdd some debug output for the glyph cache
Matthias Clasen [Wed, 20 Sep 2017 03:59:44 +0000 (23:59 -0400)]
Add some debug output for the glyph cache

Print out some statistics and dump the glyph caches to a png,
for now.

8 years agoMake the glyph cache grow as needed
Matthias Clasen [Wed, 20 Sep 2017 03:32:07 +0000 (23:32 -0400)]
Make the glyph cache grow as needed

Make it possible to have more than one texture in the
glyph cache, and create new ones when we run out of space
in the existing ones.

8 years agovulkan: Move glyph cache to a separate file
Matthias Clasen [Tue, 19 Sep 2017 23:32:04 +0000 (19:32 -0400)]
vulkan: Move glyph cache to a separate file

Otherwise things will get too messy.

8 years agovulkan: Better glyph cache api
Matthias Clasen [Tue, 19 Sep 2017 22:53:32 +0000 (18:53 -0400)]
vulkan: Better glyph cache api

Move the glyph caching api to something that can support using
multiple textures. We now split the text render ops into multiple
ops for different textures, and make each op render just a substring
of the text node's glyph string.

8 years agoToolItem: Fix nullable annotation put on wrong arg
Daniel Boles [Wed, 20 Sep 2017 22:53:54 +0000 (23:53 +0100)]
ToolItem: Fix nullable annotation put on wrong arg

D’oh

8 years agogdkseatdefault: Grab touch events where applicable
Daniel Boles [Tue, 5 Sep 2017 14:44:00 +0000 (15:44 +0100)]
gdkseatdefault: Grab touch events where applicable

gdk_seat_default_grab() grabs POINTER_EVENTS if the capability is
GDK_SEAT_CAPABILITY_ALL_POINTING. But that enumerator is a union that
includes GDK_SEAT_CAPABILITY_TOUCH, but we never grabbed TOUCH_EVENTS,
an unused macro that was presumably created with this purpose in mind.

So, check which of the ALL_POINTING capabilities we have, and set the
right mask of POINTER_EVENTS and/or TOUCH_EVENTS as required.

As part of this, explicitly let TABLET_STYLUS take over pointer events,
as this is the intended behaviour and was the effective result before.

This should fix touch events being lost in migrating from Device.grab()
to Seat.grab(GDK_SEAT_CAPABILITY_ALL_POINTING), as found by Inkscape.

https://bugzilla.gnome.org/show_bug.cgi?id=781757

8 years agoOverlay: Document style classes added per position
Daniel Boles [Wed, 20 Sep 2017 16:34:43 +0000 (17:34 +0100)]
Overlay: Document style classes added per position

8 years agoUpdate POTFILES.in
Piotr Drąg [Tue, 19 Sep 2017 17:49:39 +0000 (19:49 +0200)]
Update POTFILES.in

8 years agogtkmain: Ensure to emit real GDK_LEAVE_NOTIFY events.
Carlos Garnacho [Tue, 19 Sep 2017 16:18:07 +0000 (18:18 +0200)]
gtkmain: Ensure to emit real GDK_LEAVE_NOTIFY events.

If we got a GDK_LEAVE_NOTIFY event from GDK, we would reset the
GtkPointerFocus, but the event would be silently consumed.

8 years agogdk/x11: Implement GDK_CROSSING_TOUCH_BEGIN/END/DEVICE_CHANGE events
Carlos Garnacho [Tue, 19 Sep 2017 16:14:53 +0000 (18:14 +0200)]
gdk/x11: Implement GDK_CROSSING_TOUCH_BEGIN/END/DEVICE_CHANGE events

The behavior where a touchpoint takes over the pointer position is
really backend dependent. Since this went away from the generic code,
implement it here.

8 years agogdk: Remove remainings of fake crossing event delivery across touch
Carlos Garnacho [Fri, 15 Sep 2017 17:50:01 +0000 (19:50 +0200)]
gdk: Remove remainings of fake crossing event delivery across touch

This was by all lights broken, and is basically an implementation detail
of the X11 backend since the pointer emulating touch just steals the pointer
cursor, so should be reimplemented there.

8 years agogdk: Coalesce 2 GdkWindow fields in GdkPointerWindowInfo struct
Carlos Garnacho [Fri, 15 Sep 2017 17:39:18 +0000 (19:39 +0200)]
gdk: Coalesce 2 GdkWindow fields in GdkPointerWindowInfo struct

One used to point to the toplevel and the other to the client-side window
that the pointer pointed to. The latter was made to be like the former in
most places, so put those together, and fix the remaining cases where the
variable might not end up with a toplevel/native window.

8 years agogdk: Remove unused variable
Carlos Garnacho [Fri, 15 Sep 2017 17:23:14 +0000 (19:23 +0200)]
gdk: Remove unused variable

It was supporting API that has been removed.

8 years agogdk: Remove implicit touch grab accounting
Carlos Garnacho [Fri, 15 Sep 2017 17:12:10 +0000 (19:12 +0200)]
gdk: Remove implicit touch grab accounting

This is not necessary now that there's no client-side windows to track.
The only removed piece that could make sense is emission of grab broken
events, but it's already an stretch since the semantics of those with
multi-touchpoint is unclear.

Anyhow, This should be fixed at the GTK level, while we let GDK deal with
seat/device level grabs.

8 years agogdk: Remove motion hints
Carlos Garnacho [Fri, 15 Sep 2017 16:58:50 +0000 (18:58 +0200)]
gdk: Remove motion hints

Motion hints are now literally a thing of the past. Everything should be
using the full motion event stream.

8 years agogdk: Drop generation of synthesized crossing events on grabs
Carlos Garnacho [Fri, 15 Sep 2017 16:31:18 +0000 (18:31 +0200)]
gdk: Drop generation of synthesized crossing events on grabs

GDK just needs to care about toplevels nowadays, which means these events
are already delivered from the windowing. We don't need to generate
intra-window crossing events ourselves.

8 years agogtk: Remove 2BUTTON and 3BUTTON events and event types
Carlos Garnacho [Fri, 15 Sep 2017 15:34:06 +0000 (17:34 +0200)]
gtk: Remove 2BUTTON and 3BUTTON events and event types

Those should be interpreted by widget-local gestures, not guessed at a
high level with no notions of the specific context. Users will want
GtkGestureMultiPress to replace these events.

8 years agogdk: Remove array of event masks
Carlos Garnacho [Fri, 15 Sep 2017 15:41:49 +0000 (17:41 +0200)]
gdk: Remove array of event masks

This has been unused since all events are just forwarded instead of
checking client-side windows evmasks.

8 years agogtklistbox: Remove enter/leave/motion event handlers
Carlos Garnacho [Fri, 15 Sep 2017 14:48:13 +0000 (16:48 +0200)]
gtklistbox: Remove enter/leave/motion event handlers

Those worked similarly to those in GtkFlowBox, but would additionally
handle "active" state for child rows. Simplify this to just enabling/
disabling active state on gesture press/release, we don't get the
nice state updates when hovering around with a mouse button pressed,
but the rationale from flowbox applies here, and makes a nice cleanup.

8 years agogtkcolorswatch: Remove enter/leave event handlers
Carlos Garnacho [Fri, 15 Sep 2017 14:32:35 +0000 (16:32 +0200)]
gtkcolorswatch: Remove enter/leave event handlers

Those just maintained prelight state, which is already managed internally.

8 years agogtkbutton: Remove enter/leave event handlers
Carlos Garnacho [Fri, 15 Sep 2017 14:28:37 +0000 (16:28 +0200)]
gtkbutton: Remove enter/leave event handlers

They just maintain priv->in_button and widget state up-to-date, this
basically matters during user interaction, and is already maintained
in the gesture ::update handler. This seems to be sufficient.

8 years agogtkflowbox: Drop crossing/motion event handlers
Carlos Garnacho [Fri, 15 Sep 2017 14:16:24 +0000 (16:16 +0200)]
gtkflowbox: Drop crossing/motion event handlers

Those basically controlled priv->active_child_active, which would
1) trigger a redraw when the pointer enters/leaves it, and 2) ensure
that press/release happen on the same child for it to be activated.

The former is not necessary, and the latter can be simplified by
just checking again the child on the coordinates given by the
::release gesture handler. This makes all enter/leave/motion_notify
event handlers unneeded.

8 years agogtkspinbutton: Remove motion notify handler
Carlos Garnacho [Fri, 15 Sep 2017 13:05:40 +0000 (15:05 +0200)]
gtkspinbutton: Remove motion notify handler

It does nothing nowadays.

8 years agogtkcalendar: Use scroll event controller
Carlos Garnacho [Fri, 15 Sep 2017 12:55:19 +0000 (14:55 +0200)]
gtkcalendar: Use scroll event controller

8 years agogtkscrolledwindow: Use scroll event controller
Carlos Garnacho [Fri, 15 Sep 2017 11:55:23 +0000 (13:55 +0200)]
gtkscrolledwindow: Use scroll event controller

All kinetic scrolling initial velocity calculations are now
taken from the scroll controller. The handling of timeouts
to snap back when overshooting has been also made to just
apply on devices that can't emit ::scroll-begin/end.

8 years agogtkspinbutton: Use scroll event controller
Carlos Garnacho [Fri, 15 Sep 2017 11:54:38 +0000 (13:54 +0200)]
gtkspinbutton: Use scroll event controller

8 years agogtkscalebutton: Use scroll event controller
Carlos Garnacho [Fri, 15 Sep 2017 11:54:20 +0000 (13:54 +0200)]
gtkscalebutton: Use scroll event controller

8 years agogtkrange: Use scroll event controller
Carlos Garnacho [Fri, 15 Sep 2017 11:53:59 +0000 (13:53 +0200)]
gtkrange: Use scroll event controller

8 years agogtkpathbar: Use scroll event controller
Carlos Garnacho [Fri, 15 Sep 2017 11:53:43 +0000 (13:53 +0200)]
gtkpathbar: Use scroll event controller

8 years agogtkmenu: Use scroll event controller
Carlos Garnacho [Fri, 15 Sep 2017 11:53:27 +0000 (13:53 +0200)]
gtkmenu: Use scroll event controller

8 years agogtkcombobox: Use scroll event controller
Carlos Garnacho [Fri, 15 Sep 2017 11:52:55 +0000 (13:52 +0200)]
gtkcombobox: Use scroll event controller

8 years agogtk: Add GtkEventControllerScroll
Carlos Garnacho [Fri, 15 Sep 2017 11:22:57 +0000 (13:22 +0200)]
gtk: Add GtkEventControllerScroll

This is a GtkEventController implementation to handle mouse
scrolling. It handles both smooth and discrete events and
offers a way for callers to tell their preference too, so
smooth events shall be accumulated and coalesced on request.

On capable devices, it can also emit ::scroll-begin and
::scroll-end enclosing all ::scroll events for a scroll
operation.

It also has builtin kinetic scrolling capabilities, reporting
the initial velocity for both axes after ::scroll-end if
requested.

8 years agogdk/x11: Avoid delivering emulated scroll events
Carlos Garnacho [Fri, 15 Sep 2017 11:21:25 +0000 (13:21 +0200)]
gdk/x11: Avoid delivering emulated scroll events

We now just propagate the real event, and let the caller deal
with smooth vs discrete.

8 years agogdk/wayland: Drop emission of emulated scroll events
Carlos Garnacho [Fri, 15 Sep 2017 11:20:16 +0000 (13:20 +0200)]
gdk/wayland: Drop emission of emulated scroll events

A wl_pointer.frame can now only result on one scroll event
being emitted.

8 years agogtk: Change gtk_propagate_event() to propagate both ways.
Carlos Garnacho [Mon, 29 May 2017 12:55:37 +0000 (14:55 +0200)]
gtk: Change gtk_propagate_event() to propagate both ways.

This change is made for consistency, it doesn't make sense to expose
one-way propagation, as it can only break expectations from GTK+. This
function might be made entirely private in the future, but it still
makes sense to do this in one go for our internal usecases.

8 years agogdk/x11: Drop motion/button events emulated from touch
Carlos Garnacho [Mon, 29 May 2017 10:16:21 +0000 (12:16 +0200)]
gdk/x11: Drop motion/button events emulated from touch

We now always listen to touch events. Just avoid delivering both
types of events.

8 years agoeventcontroller: Drop event_mask API
Carlos Garnacho [Mon, 29 May 2017 10:08:19 +0000 (12:08 +0200)]
eventcontroller: Drop event_mask API

This is unchecked, we can remove it entirely as well.

8 years agogtkwidget: Drop pointer emulation out of touch events
Carlos Garnacho [Mon, 29 May 2017 10:02:53 +0000 (12:02 +0200)]
gtkwidget: Drop pointer emulation out of touch events

Users of touch events are required to either use a GtkGesture, or handle
touch events themselves.

8 years agogtk: Run GtkWidgetClass event signals inside a GtkEventController
Carlos Garnacho [Fri, 26 May 2017 16:55:30 +0000 (18:55 +0200)]
gtk: Run GtkWidgetClass event signals inside a GtkEventController

This will allow further cleanups and optimizations in capture/target/bubble
event delivery. For simplicity, ATM every widget will receive its own
GtkEventControllerLegacy, it could be desirable to add finer control over
this in the future, so widgets that fully use event controllers for input
management can do away without this legacy piece.

8 years agotestsuite: Use GdkEvent API
Matthias Clasen [Mon, 28 Aug 2017 23:11:45 +0000 (19:11 -0400)]
testsuite: Use GdkEvent API

8 years agotests: Use GdkEvent API
Matthias Clasen [Mon, 28 Aug 2017 23:11:14 +0000 (19:11 -0400)]
tests: Use GdkEvent API

8 years agoexamples: Use GdkEvent API
Matthias Clasen [Mon, 28 Aug 2017 23:05:31 +0000 (19:05 -0400)]
examples: Use GdkEvent API

8 years agowidget: Give up on GdkEvent api for now
Matthias Clasen [Mon, 28 Aug 2017 23:05:11 +0000 (19:05 -0400)]
widget: Give up on GdkEvent api for now

8 years agotreeview: Give up on GdkEvent api for now
Matthias Clasen [Mon, 28 Aug 2017 23:04:34 +0000 (19:04 -0400)]
treeview: Give up on GdkEvent api for now

There's multiple places where events are manually generated
here, this needs more thought.

8 years agoentry accessible: Give up on GdkEvent api for now
Matthias Clasen [Mon, 28 Aug 2017 22:53:40 +0000 (18:53 -0400)]
entry accessible: Give up on GdkEvent api for now

Just include gdkeventsprivate.h here for now. This may be
resolved by just dropping icon support from GtkEntry down
the road.

8 years agoa11y: Stop listening for configure events
Matthias Clasen [Mon, 28 Aug 2017 22:52:48 +0000 (18:52 -0400)]
a11y: Stop listening for configure events

This needs to be done differently.

8 years agoAdd some more GdkEvent getters
Matthias Clasen [Mon, 28 Aug 2017 22:47:35 +0000 (18:47 -0400)]
Add some more GdkEvent getters

8 years agogtk-demo: Use GdkEvent API
Matthias Clasen [Mon, 28 Aug 2017 22:47:03 +0000 (18:47 -0400)]
gtk-demo: Use GdkEvent API

8 years agotreev view column: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 18:29:52 +0000 (14:29 -0400)]
treev view column: Use GdkEvent API

8 years agoclipboard: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 18:29:31 +0000 (14:29 -0400)]
clipboard: Use GdkEvent API

8 years agoa11y: Use GdkEvent API in some places
Matthias Clasen [Sat, 26 Aug 2017 18:26:30 +0000 (14:26 -0400)]
a11y: Use GdkEvent API in some places

More work needed.

8 years agotooltip: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 16:23:02 +0000 (12:23 -0400)]
tooltip: Use GdkEvent API

And at the same time, reshuffle things slightly to avoid
creating synthetic events.

8 years agotext view: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 16:22:49 +0000 (12:22 -0400)]
text view: Use GdkEvent API

8 years agotext handle: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 16:22:35 +0000 (12:22 -0400)]
text handle: Use GdkEvent API

8 years agoselection: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 14:58:39 +0000 (10:58 -0400)]
selection: Use GdkEvent API

8 years agosearch bar: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 14:58:23 +0000 (10:58 -0400)]
search bar: Use GdkEvent API

8 years agoscrolled window: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 14:58:08 +0000 (10:58 -0400)]
scrolled window: Use GdkEvent API

8 years agoplaces view: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 14:57:52 +0000 (10:57 -0400)]
places view: Use GdkEvent API

8 years agoplace sidebar: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 14:57:37 +0000 (10:57 -0400)]
place sidebar: Use GdkEvent API

8 years agopath bar: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 14:57:15 +0000 (10:57 -0400)]
path bar: Use GdkEvent API

8 years agopad controller: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 14:56:25 +0000 (10:56 -0400)]
pad controller: Use GdkEvent API

8 years agomenu shell: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 14:56:08 +0000 (10:56 -0400)]
menu shell: Use GdkEvent API

8 years agomenu item: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 14:55:52 +0000 (10:55 -0400)]
menu item: Use GdkEvent API

8 years agoim context simple: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 14:55:35 +0000 (10:55 -0400)]
im context simple: Use GdkEvent API

8 years agoheader bar: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 14:55:16 +0000 (10:55 -0400)]
header bar: Use GdkEvent API

8 years agogesture zoom: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 14:53:33 +0000 (10:53 -0400)]
gesture zoom: Use GdkEvent API

8 years agogesture swipe: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 14:53:01 +0000 (10:53 -0400)]
gesture swipe: Use GdkEvent API

8 years agogesture single: Use GdkEvent API
Matthias Clasen [Sat, 26 Aug 2017 14:52:45 +0000 (10:52 -0400)]
gesture single: Use GdkEvent API